home *** CD-ROM | disk | FTP | other *** search
/ PC Format 4 (5.25") / PC Format - Issue 4 January 1992 - Disk 1.ima / PCF.BAT < prev    next >
DOS Batch File  |  1994-08-29  |  368b  |  26 lines

  1. echo off
  2. cls
  3.  
  4. :start
  5. cls
  6. echo Welcome to the PC Format cover disk
  7. echo Please press:
  8. echo              C - To run the Cisco Heat playable preview
  9. echo              X - To return to DOS
  10.  
  11. getkey cx
  12.  
  13. if errorlevel 2 goto quit
  14. if errorlevel 1 goto cisco
  15.  
  16. :cisco
  17. cisco
  18. goto start
  19.  
  20. :quit
  21. cls
  22. echo thankyou for using the PCF Cover Disk.
  23. cd..
  24. pause
  25.  
  26.